【实例简介】orderRelationUpdateNotify 联通 VAC 订购接口 java 含测试客户端
联通VAC wdsl实例实测 orderRelationUpdateNotify SyncNotifySP.wsdl 在项目中 项目Eclipse 加载 Tomcat可运行 运行后地址:http://localhost:8080/WebServices/services/vac?wsdl 有另一个项目 WebClinet Test ...
【实例截图】
【核心代码】
.
├── WebClient
│ ├── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── lib
│ │ │ ├── axis.jar
│ │ │ ├── commons-discovery-0.2.jar
│ │ │ ├── commons-logging.jar
│ │ │ ├── jaxrpc.jar
│ │ │ ├── saaj.jar
│ │ │ └── wsdl4j.jar
│ │ └── web.xml
│ ├── build
│ │ └── classes
│ │ ├── TestClient.class
│ │ └── com
│ │ └── unicom
│ │ └── vac
│ │ └── bossagent
│ │ └── soap
│ │ ├── SyncNotifySPService.class
│ │ ├── SyncNotifySPServiceProxy.class
│ │ ├── SyncNotifySPServiceService.class
│ │ ├── SyncNotifySPServiceServiceLocator.class
│ │ ├── SyncNotifySPSoapBindingStub.class
│ │ └── sync
│ │ ├── req
│ │ │ └── OrderRelationUpdateNotifyRequest.class
│ │ └── rsp
│ │ └── OrderRelationUpdateNotifyResponse.class
│ └── src
│ ├── TestClient.java
│ └── com
│ └── unicom
│ └── vac
│ └── bossagent
│ └── soap
│ ├── SyncNotifySPService.java
│ ├── SyncNotifySPServiceProxy.java
│ ├── SyncNotifySPServiceService.java
│ ├── SyncNotifySPServiceServiceLocator.java
│ ├── SyncNotifySPSoapBindingStub.java
│ └── sync
│ ├── req
│ │ └── OrderRelationUpdateNotifyRequest.java
│ └── rsp
│ └── OrderRelationUpdateNotifyResponse.java
├── WebClient.rar
├── WebServices
│ ├── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── com
│ │ │ │ └── unicom
│ │ │ │ └── vac
│ │ │ │ └── bossagent
│ │ │ │ └── soap
│ │ │ │ ├── deploy.wsdd
│ │ │ │ └── undeploy.wsdd
│ │ │ ├── lib
│ │ │ │ ├── axis.jar
│ │ │ │ ├── commons-discovery-0.2.jar
│ │ │ │ ├── commons-logging.jar
│ │ │ │ ├── jaxrpc.jar
│ │ │ │ ├── saaj.jar
│ │ │ │ └── wsdl4j.jar
│ │ │ ├── server-config.wsdd
│ │ │ └── web.xml
│ │ └── wsdl
│ │ └── SyncNotifySP.wsdl
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── unicom
│ │ └── vac
│ │ └── bossagent
│ │ └── soap
│ │ ├── SyncNotifySPService.class
│ │ ├── SyncNotifySPServiceService.class
│ │ ├── SyncNotifySPServiceServiceLocator.class
│ │ ├── SyncNotifySPSoapBindingImpl.class
│ │ ├── SyncNotifySPSoapBindingSkeleton.class
│ │ ├── SyncNotifySPSoapBindingStub.class
│ │ └── sync
│ │ ├── req
│ │ │ └── OrderRelationUpdateNotifyRequest.class
│ │ └── rsp
│ │ └── OrderRelationUpdateNotifyResponse.class
│ └── src
│ └── com
│ └── unicom
│ └── vac
│ └── bossagent
│ └── soap
│ ├── SyncNotifySPService.java
│ ├── SyncNotifySPServiceService.java
│ ├── SyncNotifySPServiceServiceLocator.java
│ ├── SyncNotifySPSoapBindingImpl.java
│ ├── SyncNotifySPSoapBindingSkeleton.java
│ ├── SyncNotifySPSoapBindingStub.java
│ └── sync
│ ├── req
│ │ └── OrderRelationUpdateNotifyRequest.java
│ └── rsp
│ └── OrderRelationUpdateNotifyResponse.java
├── WebServices.rar
└── orderRelationUpdateNotify 联通 VAC 订购接口 java 含测试客户端_orderRelationUpdateNotify.rar
54 directories, 55 files
评论